home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C / Libraries / MacWT 0.04 / wt / Imakefile < prev    next >
Encoding:
Makefile  |  1994-10-31  |  853 b   |  30 lines  |  [TEXT/MMCC]

  1.     /* You may add -O to the next line if you'd like. */
  2.  
  3.      CDEBUGFLAGS = -O2 -Wall -Winline
  4.  
  5. /* Choose the first line if your X server supports the shared memory
  6. **   extension, and the second line if it does not.  Supported architecutres
  7. **   are ARCH-i86, ARCH_SUN, and ARCH_OTHER
  8. */
  9.    EXTRA_DEFINES = -DARCH_i86 -DX11GRAPHICS
  10. /* EXTRA_DEFINES = -DX11GRAPHICS -DNO_XSHM */
  11.  
  12. EXTRA_LIBRARIES  = -lm
  13.  
  14.          DEFINES = $(RESOURCE_DEFINES) $(LOCAL_DEFINES)
  15.  
  16.          DEPLIBS = $(DEPXLIB)
  17.  LOCAL_LIBRARIES = $(XLIB)
  18.  
  19. SRCS = error.c fixed.c framebuf.c list.c render.c \
  20.        table.c texture.c view.c world.c worldfile.c wt.c \
  21.        wtmem.c x11graphics.c x11input.c
  22.  
  23. OBJS = error.o fixed.o framebuf.o list.o render.o \
  24.        table.o texture.o view.o world.o worldfile.o wt.o \
  25.        wtmem.o x11graphics.o x11input.o
  26.  
  27.  
  28. ComplexProgramTarget(xwt)
  29.  
  30.